| commit | 0cf4ab7839d1eb7544e5caf149a86ff3a9778380 | [log] [tgz] |
|---|---|---|
| author | Jeff Vander Stoep <jeffv@google.com> | Thu Feb 01 19:30:10 2024 +0000 |
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Thu Feb 01 19:30:10 2024 +0000 |
| tree | 454146e494166dac5ec269dc5ab7056118aff48c | |
| parent | 81e706865418a818dbf657178f0e2e3414e126bd [diff] | |
| parent | 6d23b35d43e81ef39cfbf1ca8b8846219fc8777e [diff] |
Upgrade futures to 0.3.30 am: 88054eb6cb am: 6d23b35d43 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/futures/+/2943533 Change-Id: I1f9dbaed87aff40f3ed20f6ac134ec0ccaa5d217 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
futures-rs is a library providing the foundations for asynchronous programming in Rust. It includes key trait definitions like Stream, as well as utilities like join!, select!, and various futures combinator methods which enable expressive asynchronous control flow.
Add this to your Cargo.toml:
[dependencies] futures = "0.3"
The current futures requires Rust 1.56 or later.
stdFutures-rs works without the standard library, such as in bare metal environments. However, it has a significantly reduced API surface. To use futures-rs in a #[no_std] environment, use:
[dependencies] futures = { version = "0.3", default-features = false }
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.